What is the difference between Server-side scripting and Client-side scripting?
2404
18-Dec-2013
Sumit Kesarwani
18-Dec-2013Server side scripting :
means that all the script will be executed by the server and interpreted as needed. ASP doesn't have some of the functionality like sockets, uploading, etc.
Client side scripting :
means that the script will be executed immediately in the browser such as form field validation, clock, email validation, etc. Client side scripting is usually done in VBScript or JavaScript.